home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / SEARCHADD.DTML < prev    next >
Encoding:
Text File  |  2000-06-20  |  2.0 KB  |  51 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  2. <HTML lang="en"><HEAD><TITLE>Add a Search Interface</TITLE></HEAD>
  3. <BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555">
  4.  
  5. <H2>Add a Search Interface</H2>
  6.  
  7. <dtml-var "HelpSys.HelpButton('ZSearch-Interface_Add.stx','OFSP')">
  8.  
  9. <form action="manage_addZSearch" method="POST">
  10.  
  11. <P>
  12. A Search Interface allows you to search Zope databases.
  13. The Search Interface will create a 
  14.  search-input form and a report for displaying the search results.
  15. </P>
  16.  
  17. <P>
  18. In the form below, <EM>seachable objects</EM> are the objects
  19. (usually Z SQL Methods) to be searched. <EM>Report Id</EM> and 
  20. <EM>Search Input Id</EM> are the ids of the 
  21. report and search form objects that will be created.
  22. <EM>Report Style</EM> indicates the type of report to generate.
  23. </P>
  24.  
  25. <table>
  26.             
  27. <tr>    <th align='LEFT'>Select one<br>or more<br>searchable objects</th>
  28.         <td align='LEFT'><select name="queries:list" size=4 multiple>
  29.         <dtml-in ZQueryIds>
  30.            <option><dtml-var sequence-item></option>
  31.         </dtml-in>
  32.         </select></td></tr>
  33. <tr>    <th align='LEFT'>Report Id</th>
  34.         <td align='LEFT'><input name="report_id" size="40"></td></tr>
  35. <tr>    <th align='LEFT'><em>Report Title<em></th>
  36.         <td align='LEFT'><input name="report_title" size="40"></td></tr>
  37. <tr>    <th align='LEFT'>Report Style</th>
  38.         <td align='LEFT'><select name='report_style:int'>
  39.             <option value="0">Tabular</option>
  40.             <option value="1">Records</option>
  41.             </select></td></tr>
  42. <tr>    <th align='LEFT'><em>Search Input Id<em></th>
  43.         <td align='LEFT'><input name="input_id" size="40"></td></tr>
  44. <tr>    <th align='LEFT'><em>Search Input Title</em></th>
  45.         <td align='LEFT'><input name="input_title" size="40"></td></tr>
  46.  
  47. <tr><td></td><td><input type="SUBMIT" name="SUBMIT" value="Add"></td></tr>
  48.  
  49. </table></form></body></html>
  50.  
  51.